home *** CD-ROM | disk | FTP | other *** search
/ Erotic Games: Memory / Erotic Games: Memory.iso / mac / air_installers / AdobeAIR.exe / setup.swf / scripts / mx / managers / CursorManagerPriority.as < prev    next >
Text File  |  2009-02-12  |  474b  |  25 lines

  1. package mx.managers
  2. {
  3.    import mx.core.mx_internal;
  4.    
  5.    use namespace mx_internal;
  6.    
  7.    public final class CursorManagerPriority
  8.    {
  9.       
  10.       public static const HIGH:int = 1;
  11.       
  12.       public static const MEDIUM:int = 2;
  13.       
  14.       mx_internal static const VERSION:String = "3.0.0.0";
  15.       
  16.       public static const LOW:int = 3;
  17.        
  18.       
  19.       public function CursorManagerPriority()
  20.       {
  21.          super();
  22.       }
  23.    }
  24. }
  25.